{
            font-family: 'Poppins';
            /* Dark background for sections */
            background-color: #212529;
            color: #f8f9fa;
        }

        /* --- Navigation CSS --- */
        .navbar {
            /* Semi-transparent dark background */
            background-color: #1E2125 !important;
            backdrop-filter: blur(5px);
        }
        .navbar-brand {
            font-size: 1.75rem;
            font-weight: 700;
        }
        .nav-link {
            font-weight: 500;
        }

        /* --- Hero Section CSS --- */
        .hero-section {
            background-image: linear-gradient(rgba(23, 37, 84, 0.7), rgba(23, 37, 84, 0.7)), url('https://images.pexels.com/photos/1779487/pexels-photo-1779487.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            /* Full height minus navbar height (approx 74px) */
            min-height: calc(100vh - 74px);
        }

        .hero-section h1 {
            /* Responsive font size */
            font-size: clamp(3.5rem, 10vw, 5.5rem);
            font-weight: 700;
        }

        /* Custom Teal Button */
        .cta-button {
            background-color: #14B8A6; /* Teal color */
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem; /* 8px */
            border: none;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            background-color: #0D9488; /* Darker teal */
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        /* --- About Section CSS --- */
        .about-section {
            background-color: #ffffff; /* Dark gray from image */
            color: #000000; /* Lighter gray for text */
        }
        .about-heading {
            color: #008272;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
/* Custom Resume Button */
        .btn-resume {
            background-color: #008272;
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            font-weight: 500;
            border-radius: 2rem; /* Pill shape */
            transition: all 0.3s ease;
        }
        .btn-resume:hover {
            background-color: #0D9488; /* Darker orange */
            color: white;
        }
        /* Styling for outline button (Now Black) */
        .btn-outline-light {
            background-color: #000; /* Black background */
            color: #fff; /* White text */
            border-color: #000; /* Black border */
            padding: 0.6rem 1.5rem;
            border-radius: 2rem; /* Pill shape */
            font-weight: 500;
            border-width: 2px;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: #222; /* Slightly lighter black on hover */
            color: #fff;
            border-color: #222;
        }

        /* Global Custom Overrides */
                body {
                    background-color: #000 !important; /* Force black background */
                    color: #fff;
                    font-family: 'Roboto', sans-serif;
                }

        /* <!-- SECTION 1: DESIGN PROCESS CIRCLE UI --> */

                /* <!-- CSS for Section 1 --> */

                #design-process-section {
                            position: relative;
                            width: 100%;
                            /* REMOVED 400vh SCROLL HEIGHT */
                            min-height: 100vh;
                            background-color: #000;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            overflow: hidden;
                        }

                        /* REMOVED Sticky Wrapper properties, now just a container */
                        .sticky-wrapper {
                            position: relative;
                            width: 100%;
                            height: 100vh; /* Fill the screen */
                            z-index: 5;
                        }

                        /* The large dotted circle */
                        .orbit-circle {
                            position: absolute;
                            width: 700px;
                            height: 700px;

                            /* Positioning: Center of the screen */
                            top: 50%;
                            left: 50%;

                            /* Dotted circle styling */
                            border: 2px dotted rgba(255, 255, 255, 0.4);
                            border-radius: 50%;
                            pointer-events: none;
                            z-index: 1;

                            /* Animation logic */
                            animation: slowSpin 60s linear infinite;
                        }

                        /* Typography Overrides for specific look */
                        .sub-heading {
                            font-size: 0.9rem;
                            letter-spacing: 2px;
                            color: #aaa;
                        }

                        .main-heading {
                            font-family: 'Oswald', sans-serif;
                            font-size: 6rem;
                            line-height: 0.9;
                            font-weight: 700;
                            margin-bottom: 20px;
                            color: #fff;
                        }

                        /* Custom styling for the "Let's Contact" button to match design */
                        .contact-link {
                            text-decoration: none;
                            color: white;
                            transition: opacity 0.3s;
                        }
                        .contact-link:hover {
                            color: #ddd;
                        }

                        .arrow-circle {
                            width: 24px;
                            height: 24px;
                            background: #333;
                            border-radius: 50%;
                            font-size: 12px;
                            display: inline-flex;
                            justify-content: center;
                            align-items: center;
                        }

                        /* Floating Pills (The Orbiting Items) */
                        .process-item {
                            position: absolute;
                            background-color: #1a1a1a;
                            /* Bootstrap rounded-pill utility used in HTML, but padding defined here */
                            padding: 15px 30px;
                            font-family: 'Oswald', sans-serif;
                            font-weight: 500;
                            font-size: 1.2rem;
                            cursor: pointer;
                            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
                            white-space: nowrap;
                            z-index: 20;

                            /* CHANGED: Initial Opacity 0 for Load Animation */
                            opacity: 0;
                            animation: fadeIn 0.8s ease forwards;

                            transition: transform 0.3s ease, background-color 0.3s, color 0.3s, box-shadow 0.3s;
                        }

                        /* Hover Effect for the 4 words */
                        .process-item:hover {
                            background-color: #fff;
                            color: #000 !important; /* Invert colors on hover */
                            box-shadow: 0 0 25px rgba(255,255,255,0.6);
                            z-index: 30; /* Bring to front */
                        }

                        /* Ensure the arrow changes color on hover too */
                        .process-item:hover span {
                             color: #000;
                        }

                        /* Positioning the 4 items with Staggered Delays */
                        .item-1 { top: 20%; left: 20%; transform: translate(-50%, -50%); animation-delay: 0.2s; }
                        .item-2 { top: 35%; right: 15%; transform: translate(50%, -50%); animation-delay: 0.4s; }
                        .item-3 { bottom: 25%; left: 15%; transform: translate(-50%, 50%); animation-delay: 0.6s; }
                        .item-4 { bottom: 15%; right: 25%; transform: translate(50%, 50%); animation-delay: 0.8s; }

                        /* Keyframes for the Appear Animation */
                        @keyframes fadeIn {
                            from { opacity: 0; }
                            to { opacity: 1; }
                        }

                        @keyframes slowSpin {
                            from { transform: translate(-50%, -50%) rotate(0deg); }
                            to { transform: translate(-50%, -50%) rotate(360deg); }
                        }

/* --- Services Section CSS --- */
        .services-section {
            background-color: #000000; /* Light gray/white background */
            color: #212529; /* Dark text */
        }
        .services-section .section-title {
            font-weight: 700;
            font-size: 2.5rem;
            color: #ffffff; /* Dark heading */
        }
        .services-section .section-intro {
            color: #ffffff; /* Gray intro text */
            max-width: 400px;
            margin-bottom: 3rem;
        }
        .service-card {
            border: none;
            border-radius: 0.75rem; /* 12px */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 300px; /* Make cards same height */
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(1, 1, 1, 0.1);
        }
        .service-card .card-title {
            font-weight: 700;
            color: #212529;
        }
        .service-card .card-text {
            color: #000000;
        }
        .service-icon {
            color: #008272; /* Approx gold/yellow color from image */
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
        }


/* Hiring Section */

        .cta-section {
                background-color: #008272; /* The yellow/gold background color */
                padding: 80px 20px;
                text-align: center;
                color: #ffffff;
            }

            .cta-section .pre-heading {
                font-size: 1em;
                font-weight: 400;
                margin: 0 0 10px;
                opacity: 0.9;
            }

            .cta-section h2 {
                font-size: 2.8em;
                font-weight: 600;
                margin: 0 0 30px;
                line-height: 1.3;
            }

            .cta-button {
                display: inline-block;
                background-color: #ffffff;
                color: #333333; /* Dark text color */
                font-size: 1em;
                font-weight: 600;
                padding: 15px 35px;
                border-radius: 50px; /* Fully rounded corners */
                text-decoration: none;
                transition: transform 0.3s ease, background-color 0.3s ease;
            }

            .cta-button:hover {
                background-color: #f4f4f4; /* Slightly grey on hover */
                transform: scale(1.05); /*Slight zoom effect */
            }

/* Stats Sections */

            .stats-section {
        background-color: #000000; /* Dark grey background */
        color: #f5f5f5; /* Light text color for labels */
        padding: 60px 20px;
        display: flex;
        justify-content: space-around; /* Spreads items evenly */
        align-items: center;
        flex-wrap: wrap; /* Allows items to wrap on smaller screens */
        text-align: center;
    }

    .stat-item {
        flex-basis: 200px; /* Base width for each item */
        flex-grow: 1; /* Allows items to grow and fill space */
        padding: 20px;
        box-sizing: border-box; /* Includes padding in the width */
    }

    .stat-item h3 {
        font-size: 3em; /* Large font size for the number */
        color: #23A592; /* Bright orange color */
        margin: 0 0 5px;
        font-weight: 700;
    }

    .stat-item p {
        font-size: 1em;
        color: #c0c0c0; /* Light grey for the label */
        margin: 0;
        font-weight: 400;
    }


/* Project Sections */

    .featured-projects-section {
            background-color: #f8f9fa; /* Light grey background */
            padding: 80px 20px;
            text-align: center;
        }

        .featured-projects-section .pre-title {
            color: #1abc9c; /* Teal color */
            font-size: 2em;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 0 0 10px;
            text-transform: uppercase;
        }

        .featured-projects-section .section-heading {
            font-size: 2.8em;
            color: #333;
            margin: 0 0 15px;
        }

        .featured-projects-section .section-subheading {
            font-size: 1.1em;
            color: #666;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .project-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap; /* Allows wrapping */
        }

        .project-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden; /* To contain the image radius */
            width: 350px; /* Fixed width for each card */
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .project-card .project-image {
            width: 100%;
            height: 240px; /* Fixed height for the image area */
            overflow: hidden; /* Ensure image doesn't break border radius */
        }

        .project-card .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image covers the area */
            display: block;
        }

        .project-card .project-content {
            padding: 25px 30px;
        }

        .project-card .project-title {
            font-size: 1.5em;
            font-weight: 600;
            color: #333;
            margin: 0 0 10px;
        }

        .project-card .project-category {
            color: #1abc9c; /* Teal color */
            font-size: 0.9em;
            font-weight: 500;
            margin: 0 0 15px;
        }

        .project-card .project-description {
            font-size: 0.95em;
            color: #777;
            line-height: 1.7;
            margin: 0;
        }


        .testimonials-section {
                background-color: #000000; /* Dark grey background */
                padding: 80px 20px;
                text-align: center;
            }

            .testimonials-section .section-heading {
                font-size: 2.5em;
                color: #23A592; /* Bright orange color */
                margin: 0 0 60px;
                font-weight: 600;
            }

            .testimonial-grid {
                display: flex;
                justify-content: center;
                gap: 30px;
                flex-wrap: wrap; /* Allows cards to wrap */
            }

            .testimonial-card {
                background-color: #363636; /* Slightly lighter dark card */
                border-radius: 8px;
                padding: 40px 30px;
                width: 340px; /* Fixed width for each card */
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }

            .testimonial-card .client-image {
                width: 80px;
                height: 80px;
                border-radius: 50%; /* Makes the image circular */
                overflow: hidden;
                margin-bottom: 25px;
                border: 3px solid #444; /* Optional: adds a subtle border */
            }

            .testimonial-card .client-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .testimonial-card .testimonial-text {
                font-size: 0.95em;
                color: #dcdcdc; /* Light grey text */
                line-height: 1.7;
                font-style: italic;
                margin: 0 0 25px;
                min-height: 160px; /* Helps align the names, can be adjusted */
            }

            .testimonial-card .client-name {
                font-size: 1.2em;
                font-weight: 600;
                color: #23A592; /* Bright orange color */
                margin: 0 0 5px;
            }

            .testimonial-card .client-title {
                font-size: 0.9em;
                color: #a0a0a0; /* Lighter grey for title */
                margin: 0;
            }


/* footer section */

.contact-section {
        background-color: #f8f9fa; /* Light grey background */
        padding: 80px 20px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        flex-wrap: wrap; /* Allows columns to wrap */
    }

    .contact-info,
    .contact-form-container {
        flex-basis: 450px; /* Base width for each column */
        flex-grow: 1; /* Allow columns to grow */
        max-width: 500px;
    }

    .contact-info h2 {
        font-size: 2.5em;
        font-weight: 600;
        color: #333;
        margin: 0 0 15px;
    }

    .contact-info .contact-description {
        font-size: 1em;
        color: #666;
        line-height: 1.7;
        margin: 0 0 30px;
    }

    .contact-details {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
    }

    .contact-details li {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 0.95em;
        color: #555;
    }

    .contact-details li .icon {
        width: 20px;
        margin-right: 15px;
        color: #e8a91b; /* Yellow/gold icon color */
        text-align: center;
        font-style: normal; /* Placeholder for icon font */
    }

    .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
    }

    .social-links li a {
        color: #777; /* Default icon color */
        font-size: 1.5em; /* Larger size for icons */
        /* ... other styles ... */
    }
    .social-links li a:hover {
        color: #0FAB9E; /* Yellow/gold on hover */
    }



    /* Form Styles */
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 15px;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95em;
        color: #333;
        box-sizing: border-box; /* Important for padding */
    }

    .contact-form textarea {
        height: 150px;
        resize: vertical;
    }

    .contact-form input[type="text"]:focus,
    .contact-form input[type="email"]:focus,
    .contact-form textarea:focus {
        border-color: #008272;
        outline: none;
        box-shadow: 0 0 5px #0FAB9E;
    }

    .contact-form .submit-button {
        background-color: #008272; /* Yellow/gold button */
        color: #ffffff;
        font-size: 1em;
        font-weight: 600;
        padding: 15px 35px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .contact-form .submit-button:hover {
        background-color: #0D9488; /* Darker gold on hover */
        transform: scale(1.03);
    }



    .footer-section {
        background-color: #000000;
        color: #a0a0a0;
        padding: 25px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9em;
        flex-wrap: wrap; /* Wrap for small screens */
        gap: 15px;
    }

    .footer-section .copyright {
        margin: 0;
    }

    .footer-section .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 25px;
    }

    .footer-section .footer-nav a {
        color: #a0a0a0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section .footer-nav a:hover,
    .footer-section .footer-nav a.active {
        color: #ffffff;
        text-decoration: underline;
    }



    /* RESPONSIVE CSS (Mobile) */
            @media (max-width: 900px) {
                #design-process-section { min-height: 100vh; height: auto; }
                .orbit-circle { width: 90vw; height: 90vw; opacity: 0.2; }
                .main-heading { font-size: 3.5rem; }

                /* Reposition for tablet/smaller laptop */
                .item-1 { top: 15%; left: 50%; transform: translateX(-50%); }
                .item-2 { top: auto; bottom: 20%; left: 10%; transform: none; right: auto; }
                .item-3 { bottom: 20%; right: 10%; left: auto; transform: none; }
                .item-4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
            }

            @media (max-width: 600px) {
                #design-process-section { height: auto; min-height: 100vh; }

                /* Remove sticky behavior on mobile for simpler vertical flow */
                .sticky-wrapper {
                    position: relative;
                    height: auto;
                    min-height: 100vh;
                    display: flex;
                    flex-direction: column;
                    padding: 40px 0;
                }

                .orbit-circle {
                    display: block;
                    width: 90vw;
                    height: 90vw;
                    top: 25%;
                    left: 50%;
                    opacity: 0.3;
                }

                /* Use Bootstrap spacing utilities largely, but position reset here */
                .center-content { margin: 60px 0; }

                .process-item {
                    position: static;
                    margin: 10px 0;
                    width: 80%;
                    text-align: center;
                    justify-content: center;
                    transform: none !important;
                    /* Animation will handle opacity now */
                }
            }



            /* Responsive adjustments for CTA section */
            @media (max-width: 768px) {
                .cta-section {
                    padding: 60px 20px;
                }

                .cta-section h2 {
                    font-size: 2.2em;
                }

                .cta-button {
                    padding: 12px 30px;
                    font-size: 0.95em;
                }
            }

            @media (max-width: 480px) {
                .cta-section h2 {
                    font-size: 1.8em;
                }

                 .cta-section .pre-heading {
                    font-size: 0.9em;
                }
            }

            /* Responsive adjustments for Stats section */
    @media (max-width: 768px) {
        .stats-section {
            flex-direction: column; /* Stack items vertically */
            padding: 40px 20px;
            gap: 20px; /* Add space between stacked items */
        }

        .stat-item {
            flex-basis: auto; /* Reset base width */
            width: 100%; /* Each item takes full width */
            padding: 10px 0;
        }

        .stat-item h3 {
            font-size: 2.5em;
        }
    }


    /* Responsive adjustments for Projects section */
    @media (max-width: 1200px) {
        .project-card {
            width: 45%; /* Two cards per row on tablets */
        }
    }

    @media (max-width: 768px) {
        .featured-projects-section .section-heading {
            font-size: 2.2em;
        }
        .featured-projects-section .section-subheading {
            font-size: 1em;
            margin-bottom: 40px;
        }
        .project-card {
            width: 90%; /* One card per row on mobile */
        }
    }

    @media (max-width: 480px) {
         .project-card {
            width: 100%; /* Full width on small screens */
        }
        .project-card .project-content {
            padding: 20px 25px;
        }
    }

    /* Responsive adjustments for Testimonials section */
        @media (max-width: 1200px) {
            .testimonial-card {
                width: 45%; /* Two cards per row on tablets */
            }
            .testimonial-card .testimonial-text {
                min-height: auto; /* Remove fixed height for 2-col layout */
            }
        }

        @media (max-width: 768px) {
            .testimonials-section .section-heading {
                font-size: 2.2em;
                margin-bottom: 40px;
            }
            .testimonial-card {
                width: 90%; /* One card per row on mobile */
            }
        }

        @media (max-width: 480px) {
             .testimonial-card {
                width: 100%; /* Full width on small screens */
                padding: 30px 25px;
            }
            .testimonial-card .testimonial-text {
                font-size: 0.9em;
            }
        }

        /* Responsive for Contact */
            @media (max-width: 992px) {
                .contact-section {
                    flex-direction: column; /* Stack columns */
                    align-items: center;
                    gap: 40px;
                }
                .contact-info,
                .contact-form-container {
                    flex-basis: 100%; /* Full width on smaller screens */
                    max-width: 600px;
                    text-align: center;
                }
                .contact-details li {
                    justify-content: center;
                }
                .social-links {
                    justify-content: center;
                }
            }

            @media (max-width: 480px) {
                 .contact-section {
                    padding: 60px 15px;
                }
                .contact-info h2 {
                    font-size: 2em;
                }
            }

            /* Responsive for Footer */
    @media (max-width: 600px) {
        .footer-section {
            flex-direction: column; /* Stack items */
            justify-content: center;
            text-align: center;
        }
    }
